*{
margin:0px;
padding:0px;
text-decoration: none;
list-style-type:none;
font-family: "calibri", Garamond, 'Comic Sans';

}
body{
	/*background-color: black;*/
	background-image: url("img/fundo.jpg");

}
.registo{
	/*background-color: green;*/
	background: rgba(255, 255, 255, 0.5);
	text-align: center;
	height: auto;
	width: 25%;
	margin: auto;
	margin-top: 10%;
	border-radius: 10px;
	color: #000000;
	font-size: 20px;
}


.button {
  display: inline-block;
  border-radius: 4px;
  background-color: #4169E1;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 15px;
  padding: 10px;
  width: 225px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '»';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}
</style>